home *** CD-ROM | disk | FTP | other *** search
/ Practical Algorithms for Image Analysis / Practical Algorithms for Image Analysis.iso / TARFILE.GZ / tarfile / libtiff / html / Makefile.in < prev    next >
Encoding:
Makefile  |  1999-09-11  |  2.5 KB  |  103 lines

  1. #    $Header: /usr/people/sam/tiff/html/RCS/Makefile.in,v 1.10 1996/04/29 19:51:20 sam Rel $
  2. #
  3. # @WARNING@
  4. #
  5. # Tag Image File Format Library Manual Pages
  6. #
  7. # Copyright (c) 1991-1996 Sam Leffler
  8. # Copyright (c) 1991-1996 Silicon Graphics, Inc.
  9. # Permission to use, copy, modify, distribute, and sell this software and 
  10. # its documentation for any purpose is hereby granted without fee, provided
  11. # that (i) the above copyright notices and this permission notice appear in
  12. # all copies of the software and related documentation, and (ii) the names of
  13. # Sam Leffler and Silicon Graphics may not be used in any advertising or
  14. # publicity relating to the software without the specific, prior written
  15. # permission of Stanford and Silicon Graphics.
  16. # THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND, 
  17. # EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY 
  18. # WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.  
  19. # IN NO EVENT SHALL SAM LEFFLER OR SILICON GRAPHICS BE LIABLE FOR
  20. # ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND,
  21. # OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  22. # WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF 
  23. # LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE 
  24. # OF THIS SOFTWARE.
  25. #
  26. DEPTH    = ..
  27.  
  28. SRCDIR    = ${DEPTH}/@SRCDIR@/html
  29. VPATH    = ../@SRCDIR@/html
  30.  
  31. PORT    = ${DEPTH}/port
  32.  
  33. #
  34. # VERSION:    @VERSION@
  35. # DATE:        @DATE@
  36. # TARGET:    @TARGET@
  37. # CCOMPILER:    @CCOMPILER@
  38. #
  39. SHELL    = @SCRIPT_SH@
  40. NULL    =
  41. ECHO    = echo
  42. MV    = mv
  43. RM    = rm -f
  44. INSTALL    = @INSTALL@
  45.  
  46. HTML    = @DIR_HTML@
  47.  
  48. HTMLFILES=\
  49.     bugs.html        \
  50.     build.html        \
  51.     contrib.html        \
  52.     document.html        \
  53.     images.html        \
  54.     index.html        \
  55.     internals.html        \
  56.     intro.html        \
  57.     libtiff.html        \
  58.     misc.html        \
  59.     support.html        \
  60.     tools.html        \
  61.     v3.4beta007.html    \
  62.     v3.4beta016.html    \
  63.     v3.4beta018.html    \
  64.     v3.4beta024.html    \
  65.     v3.4beta028.html    \
  66.     v3.4beta029.html    \
  67.     v3.4beta031.html    \
  68.     v3.4beta032.html    \
  69.     v3.4beta033.html    \
  70.     ${NULL}
  71. IMAGES=\
  72.     images/back.gif        \
  73.     images/bali.jpg        \
  74.     images/cat.gif        \
  75.     images/cover.jpg    \
  76.     images/cramps.gif    \
  77.     images/jello.jpg    \
  78.     images/jim.gif        \
  79.     images/note.gif        \
  80.     images/oxford.gif    \
  81.     images/quad.jpg        \
  82.     images/ring.gif        \
  83.     images/smallliz.jpg    \
  84.     images/strike.gif    \
  85.     images/strike.jpg    \
  86.     images/warning.gif    \
  87.     ${NULL}
  88. TARGETS=
  89.  
  90. all:    ${TARGETS}
  91.  
  92. install: all
  93.     ${INSTALL} -m 755 -dir -idb tiff.html.sw ${HTML} ${HTML}/images
  94.     for i in ${HTMLFILES} ${IMAGES}; do \
  95.         ${INSTALL} -idb tiff.html.sw -m 444 -F ${HTML} \
  96.         -src ${SRCDIR}/$$i -O $$i; \
  97.     done
  98.  
  99. clean:;
  100.